EmailSettings

data class EmailSettings(val type: NavigationSpec.Email.Type = Type.Plain, val to: List<String> = emptyList(), val cc: List<String> = emptyList(), val bcc: List<String> = emptyList(), val subject: String? = null, val body: String? = null, val attachments: List<NavigationSpec.Email.Attachment> = emptyList())

Settings for composing the email

Parameters

type

Type used for formatting

to

List of emails to send the email to

cc

List of emails to cc the email to

bcc

List of emails to bcc the emails to

subject

Optional subject of the email

body

Optional body of the email

attachments

List of Attachment to add to the email

Constructors

Link copied to clipboard
constructor(type: NavigationSpec.Email.Type = Type.Plain, to: List<String> = emptyList(), cc: List<String> = emptyList(), bcc: List<String> = emptyList(), subject: String? = null, body: String? = null, attachments: List<NavigationSpec.Email.Attachment> = emptyList())

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val body: String? = null
Link copied to clipboard
val cc: List<String>
Link copied to clipboard
val subject: String? = null
Link copied to clipboard
val to: List<String>
Link copied to clipboard